a9dc87bc9294591a1f79348da936e1ffabe4677c,opennms-webapp/src/main/java/org/opennms/web/rss/NotificationFeed.java,NotificationFeed,getFeed,#,18

Before Change


                    break;
                }
                entry = new SyndEntryImpl();
                entry.setTitle(notification.getTextMessage());
                entry.setLink(getUrlBase() + "notification/detail.jsp?notice=" + notification.getId());
                entry.setPublishedDate(notification.getTimeSent());
                

After Change


                    break;
                }
                entry = new SyndEntryImpl();
                if (notification.getTimeReplied() == null) {
                    entry.setTitle(sanitizeTitle(notification.getTextMessage()));
                } else {
                    entry.setTitle(sanitizeTitle(notification.getTextMessage()) + " (acknowledged)");
                }
                entry.setLink(getUrlBase() + "notification/detail.jsp?notice=" + notification.getId());
                entry.setPublishedDate(notification.getTimeSent());